home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel PPC / lib_show / bench1 / link_list_bench1.e < prev   
Encoding:
Text File  |  1996-06-13  |  390 b   |  23 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class LINK_LIST_BENCH1
  5.  
  6. inherit BENCH1;
  7.  
  8. creation make
  9.  
  10. feature
  11.  
  12.    make is
  13.       local
  14.      link_list: LINK_LIST[INTEGER];
  15.      a: ARRAY[INTEGER];
  16.       do
  17.      !!a.make(1,bench1_size);
  18.      !!link_list.from_array(a);
  19.      bench1(link_list);
  20.       end;
  21.  
  22. end -- LINK_LIST_BENCH1
  23.